home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Telnet / DialScript / DialScript 1.7.1 Doc / DialScript 1.7.1 Doc.rsrc / TEXT_129.txt < prev    next >
Text File  |  1994-03-08  |  8KB  |  109 lines

  1.  
  2. DialScript Language Reference
  3.  
  4. A brief description of the DialScript language follows. Looking at the example scripts supplied with DialScript may help also. In the description of the language, the following words have the meanings shown. 
  5.  
  6.     ident     An identifier, a sequence of any length of letters,        
  7.               digits, and underscores beginning with a letter.
  8.  
  9.     number    A non-negative integer (stored in 32 bits), e.g. 17.
  10.  
  11.     string    A string constant, e.g. "hello".
  12.  
  13.     value     Either a string or an identifier serving as a variable.
  14.               All DialScript variables are global and of type string.
  15.  
  16. Strings are enclosed in double quotes and may contain some C-language "\" escapes for special characters -- '\\', '\"', '\r', '\n', '\t,' \'b,' '\f', and '\nnn' are recognized. The "nnn" in the last case represents up to three octal digits. Strings may not contain the NULL character (\000). 
  17.  
  18. Variable date is special. It contains the current date and time. You may not set it. 
  19.  
  20. Each script consists of a sequence of uniquely named States. The initial state (i.e where execution begins) is the first one in the file. States consist of a sequence of statements that are executed one after another beginning with the first.  Keywords are reserved-- you cannot use them as identifiers. DialScript is case sensitive.  Hence all keywords must be typed in lower case.  Note the semicolons that end statements.  The script and state forms (syntax) are as shown.  Keywords are in bold type.
  21.  
  22.     script ident                     state ident
  23.        <list of states>                  <list of statements>
  24.     end ;                                       end ;
  25.  
  26. The possible statements follow.
  27.  
  28.     setvar ident value ;
  29.  
  30. Set variable ident to the given value. Setvar statements, like all statements, may appear only within state definitions. 
  31.  
  32.     input ident ;
  33.     input ident value ;
  34.     input ident noecho ;
  35.  
  36. Prompt the user for a value for variable ident. Provide the default value, if present. The variable name will be part of the prompt. A carriage return is not included in the input value. The noecho form causes the input string not to be displayed as it is entered. You cannot use a default value with the noecho form. 
  37.  
  38.     send value ;
  39.     send break ;
  40.  
  41. Send a value, or a break out over the serial line after a one second delay. If a carriage return is desired, it must be explicitly indicated with '\r'. 
  42.  
  43.     wait value ;
  44.  
  45. Wait (indefinitely) for the value to be received from the host. Characters displayed on the screen before the wait begins are not matched. It does not "look back". The results of waiting for the null string ("") are undefined.  DialScript's text matching is case-sensitive.
  46.  
  47.     display value ;
  48.  
  49. Display a value on the Mac terminal window without sending it.  Carriage return is not automatically included-- use \r. Display is useful to give status and progress information to the user. 
  50.  
  51.     delay number ;
  52.  
  53. Do nothing for "number" seconds. Display but do not match all incoming characters. 
  54.  
  55.     next value ;
  56.  
  57. Branch to the state with name given by the value. State names must be unique.  Since the argument is a value, a direct reference to a state name should be in double quotes.  An argument that is not in quotes is a variable name.  However, if such a variable is not set to a value, DialScript interprets the name as a statename.  In other words,
  58.  
  59.     next foo ;
  60.  
  61. branches to the state with name stored in variable foo, unless nothing is stored in foo in which case control passes to the state named foo.  This bizzare semantics is designed to allow scripts written for prior versions of DialScript to run under the current version.
  62.  
  63.     stop ;
  64.  
  65. Terminate a script.  Scripts also terminate upon reaching the end of a state.
  66.  
  67.     startlog value ;
  68.     startlog value append ;
  69.  
  70. Begin logging text from the terminal window to a file whose name is given by value. The first form will overwrite an existing file of the same name; the second appends to it (if it does not exist, it creates it). Log files are created in the current folder (usually determined by using an OPEN-dialog in one of the File-menu commands or the folder in which the currently running script is located) 
  71.  
  72.     stoplog ;
  73.  
  74. Cease logging incoming text (and flush the file buffer and close the log file).
  75.  
  76.     set speed number ;                 (Default: 2400)
  77.     set databits 7 | 8 ;              (Default: 8)
  78.     set stopbits 1 | 2 ;              (Default: 1)
  79.     set port printer | modem ;       (Default: modem)
  80.     set parity none | even | odd ;   (Default: none)
  81.     set dtr on | off ;                 (Default: on)
  82.     set online on | off ;             (Default: on)
  83.  
  84. Set communication parameters. Supported speeds are 300, 1200, 2400, 4800, 9600, 19200, 38400, and 57600 Baud. Set dtr pulls the DTR voltage high or low. Various modems react differently to this, and results can depend on your modem cable. The default is to pull DTR high. DialScript leaves DTR unchanged when it exits. So if it is high, it stays that way (this is important as some modems else might hang up when DialScript exits). 
  85.  
  86. Understanding and programming the use of the serial port can be rather tricky when you want to have several communications programs take turns at exchanging data with another computer to which a link has been established on a given serial port (without losing the connection and without getting the programs and computers "all confused"). The online option controls whether or not the Mac's serial port is flagged as currently-in-use by DialScript. When the of state of online is off, DialScript has closed the port and will not attempt to send or receive data. Some other application may now open the serial port to communicate with the host, linked to by DialScript, without interference by Dialscript; under Multifinder it is not necessary to quit Dialscript. Be very careful never to have two applications use the same serial port at the same time. We are under the impression that most communications programs we have seen are neither pleased nor prepared to easily cooperate in sharing a serial port under any circumstance. The recent versions of VersaTerm do; MacLayers is currently being worked on and may be able to go offline already when you read this. 
  87.  
  88.     transfer value;
  89.     transfer value value ;
  90.  
  91. Quit DialScript and run the named application (the first value), which will be instructed to open the document (second value), if it is supplied. The intended use is to chain to a terminal emulator program (such as MacLayers or ZTerm, etc.). Put DialScript, the application, and all associated documents in the same folder. Actually it suffices if the application you will transfer to, and any document you will attach are in the same folder with the script you are making the transfer from. DialScript, the application file, can be somewhere else. If this confuses you, just put everything in the same folder. 
  92.  
  93.     select
  94.         value : <list of statements>
  95.         value : <list of statements>
  96.             *
  97.             *
  98.         timeout number : <list of statements>
  99.     end ;
  100.  
  101. Wait for any of the values to match text sent from the host and then execute the corresponding statement list. If there is no match within "number" seconds, execute the timeout's statement list. There may be zero to 32 strings and zero or one timeout clause in a select. Do not try to match the null string.
  102.  
  103.     repeat number
  104.         <list of statements>
  105.     end ;
  106.  
  107. Repeat a list of statements a fixed number of times. It is possible to branch out of a repeat using a next statement. 
  108.  
  109.